home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.mactech.com 2010
/
ftp.mactech.com.tar
/
ftp.mactech.com
/
thinkref
/
archive
/
THINKPascalUH2.1.sea
/
THINKPas Univ Hdr 2.1
/
Interfaces
/
Strings.p
< prev
next >
Wrap
Text File
|
1995-09-12
|
1KB
|
50 lines
{ Converted with MPW2TPas Tuesday, September 12, 1995 10:32:04 PM }
{
File: Strings.p
Contains: Pascal <-> C String Interfaces.
Version: Technology: System 7.5
Package: Universal Interfaces 2.1 in “MPW Latest” on ETO #18
Copyright: © 1984-1995 by Apple Computer, Inc.
All rights reserved.
Bugs?: If you find a problem with this file, use the Apple Bug Reporter
stack. Include the file and version information (from above)
in the problem description and send to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
}
UNIT Strings;
INTERFACE
{$IFC UNDEFINED __STRINGS__}
{$SETC __STRINGS__ := 1}
USES
ConditionalMacros, Types;
{ $PUSH}
{ $ALIGN MAC68K}
{ $LibExport+}
{$IFC OLDROUTINELOCATIONS }
PROCEDURE C2PStrProc(aStr: UNIV Ptr);
FUNCTION C2PStr(cString: UNIV Ptr): StringPtr;
PROCEDURE P2CStrProc(aStr: StringPtr);
FUNCTION P2CStr(pString: StringPtr): Ptr;
{$ENDC}
{ $ALIGN RESET}
{ $POP}
{$ENDC} {__STRINGS__}
IMPLEMENTATION
END.